Logos Papers Website - Linking Strategy

πŸ—ΊοΈ Site Structure & Navigation Flow

β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
β”‚                    index.html (Home)                         β”‚
β”‚           Timeline showing all 12 papers                     β”‚
β”‚         + Deep Access links (GitHub, Table, Viz)             β”‚
β””β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”˜
         β”‚          β”‚          β”‚          β”‚          β”‚
         β–Ό          β–Ό          β–Ό          β–Ό          β–Ό
    overview.html  paper-1    paper-2    ...     paper-12
         β”‚          .html      .html              .html
         β”‚            β”‚          β”‚                  β”‚
         β”‚            β–Ό          β–Ό                  β–Ό
         β”‚       [Each paper has:]                  β”‚
         β”‚       β€’ Fixed top nav                    β”‚
         β”‚       β€’ Previous/Next buttons            β”‚
         β”‚       β€’ Back to Timeline                 β”‚
         β”‚       β€’ Link to Overview                 β”‚
         β”‚                                          β”‚
         β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
                            β”‚
                            β–Ό
                  Special Pages:
                  β€’ unified-prediction-table.html
                  β€’ visualizations.html
                  β€’ hypothesis.html (RCH deep dive)

πŸ“‹ Navigation Components

1. Top Navigation Bar (on every page)

[THE LOGOS PAPERS]  |  Overview  |  All Papers  |  [← Prev] [Next β†’]

2. Home Page (index.html)

Links TO:

  • overview.html - Framework explanation
  • paper-1.html through paper-12.html - Individual papers
  • unified-prediction-table.html - The prediction table
  • visualizations.html - Image gallery
  • External: GitHub, Substack (when added)

3. Overview Page (overview.html)

Links TO:

  • index.html - Back to timeline
  • All 12 paper pages (in the architecture diagram)
  • unified-prediction-table.html
  • External: GitHub

4. Individual Paper Pages (paper-1.html, etc.)

Links TO:

  • index.html - Back to timeline
  • overview.html - Framework explanation
  • paper-[N-1].html - Previous paper
  • paper-[N+1].html - Next paper
  • Related visualization in gallery

5. Special Pages

  • unified-prediction-table.html - Links back to relevant papers
  • visualizations.html - Links to papers that use each visual
  • hypothesis.html - Deep dive on RCH

🎯 User Journey Flows

Flow 1: Linear Reader (Most Common)

index.html β†’ paper-1.html β†’ paper-2.html β†’ ... β†’ paper-12.html
                ↑                                        β”‚
                β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜
                     (Back to Timeline button)

Flow 2: Researcher

index.html β†’ overview.html β†’ unified-prediction-table.html
              ↓                        ↓
         paper-11.html           GitHub repo
         (Protocols)

Flow 3: Visual Learner

index.html β†’ visualizations.html β†’ [clicked visualization]
                                         ↓
                                  Associated paper

Flow 4: Monthly Subscriber

Substack notification β†’ Substack post β†’ [Link at bottom]:
                                         "Read next paper" β†’ paper-2.html
                                         "View framework" β†’ overview.html

Paper Cards (on index.html):

Available Papers:

<div class="timeline-item available" onclick="window.location.href='paper-1.html'">
    <a href="paper-1.html" class="read-button">Read on Site β†’</a>
    <!-- OR when on Substack: -->
    <a href="https://yoursubstack.com/p/paper-1" class="read-button">Read on Substack β†’</a>
</div>

Locked Papers:

<div class="timeline-item locked">
    <div class="coming-soon">πŸ”’ Month 2</div>
    <!-- No links active -->
</div>

πŸ“… Monthly Update Process

When Paper N Launches:

  1. Update index.html:

    • Change Paper N from locked to available
    • Add link to Substack post OR to paper-N.html
  2. Create paper-N.html (if hosting on site)

    • Copy paper-1.html as template
    • Update content
    • Update prev/next navigation
  3. Re-deploy to Cloudflare

All links use consistent visual language:

  • Gold/Blue gradient = Primary CTAs (start reading, continue)
  • Gold border = Available content
  • Gray/Locked = Coming soon content
  • Blue accent = Navigation elements
  • Hover effects = All clickable items scale up slightly

πŸ”„ Cross-Reference Strategy

Papers reference each other inline like:

<p>
    As established in <a href="paper-3.html" style="color: var(--blue-light); text-decoration: underline;">
    Paper 3: The Algorithm of Reality</a>, the universe drives toward minimal complexity...
</p>

This creates a web of knowledge where readers can jump between related concepts.

πŸ“± Mobile Considerations

  • Top nav collapses to hamburger menu (if we add JavaScript)
  • Timeline switches to single column on mobile
  • Paper navigation moves to bottom on mobile
  • All touch targets are β‰₯44px for accessibility

πŸš€ Deploy Checklist

Before deploying each month:

  • Test all links on the newly unlocked paper
  • Verify image paths work
  • Check prev/next navigation
  • Test on mobile
  • Update any cross-references in other papers if needed

Canonical Hub: CANONICAL_INDEX

Ring 2 β€” Canonical Grounding

Ring 3 β€” Framework Connections